home *** CD-ROM | disk | FTP | other *** search
/ SGI O2 Out of Box Experience 2.2 / SGI O2 Out of Box Experience 2.2.iso / cgi-bin / exitEntrySpace.cgi next >
Text File  |  1998-05-26  |  899b  |  24 lines

  1. #!/bin/sh
  2.  
  3. DISPLAY=:0.0
  4. export DISPLAY
  5.  
  6. # run app in background
  7. `/usr/bin/X11/xmodmap -e "pointer = 1 2 3 4 5" & >/dev/null`;
  8.  
  9. # Print header
  10. /sbin/echo "Content-Type: text/html\n\n";
  11. /sbin/echo "<html>\n";
  12. /sbin/echo "<head>\n";
  13. /sbin/echo "<title>How To Navigate in the O2 OutOfBox Experience</title>\n";
  14. /sbin/echo "</head>\n";
  15. /sbin/echo "<body bgcolor=#ffffff text=#ffffff>\n";
  16. /sbin/echo '<center><a href="file:/CDROM/howto/howto.map"><IMG SRC="file:/CDROM/howto/howtoentry.jpg" ismap \n';
  17. /sbin/echo 'USEMAP="#howto" WIDTH="1180" HEIGHT="900" BORDER="0"></A>\n';
  18. /sbin/echo '<MAP NAME="howto">\n';
  19. /sbin/echo '        <area shape="rect" COORDS="1,60 200,120" HREF="file:/CDROM/entryspace/introexit.html">\n';
  20. /sbin/echo '        <area shape="rect" COORDS="1050,60 1180,120" HREF="file:/CDROM/courtyard/intro.html">\n';
  21. /sbin/echo "</MAP>  \n";
  22. /sbin/echo "</body>\n";
  23. /sbin/echo "</html>\n";
  24.